Git常用命令

Author: ChinSyun Pang
Weibo: arthinking_plus
Posted in: http://www.itzhai.com

Git常用命令

1
2
3
4
# 将远程分支信息获取到本地
git fetch
# 将远程分支映射到本地命名为`local-branchname`的一分支
git checkout -b local-branchname origin/remote_branchname

分支管理

设置推送分支

1
git remote add origin https://github.com/...

查看分支

1
2
3
git branch
git branch -a  
git branch -r

创建分支

1
2
3
4
# 创建test分支
git branch test
# 把本地test分支推到远程
git push origin test

切换分支

1
2
# 切换到test分支
git checkout test

删除分支

undefined

Rebase 相关命令

1
2
3
4
git rebase origin
git add .
git rebase --continue
git rebase --abort

Tag管理

删除远程Tag

undefined

从版本库中删除文件:

git rm -r –cached

References

Git删除远程Tag、分支

git 查看远程分支、本地分支、创建分支、把分支推到远程repository、删除本地分支

Pro Git

Git Rebase